home *** CD-ROM | disk | FTP | other *** search
- /* Send FTP-address to your browser
- This uses a WEB-browser to show the FTP-site
- Currently supported is Aweb, Amosaic, Ibrowse and Voyager.
- $VER: SendWEB.amicomsys 1.1 (28.07.1997) Håkan Parting
- */
- parse arg args
- options results
-
- if show('P','AWEB.1') then
- do
- address 'AWEB.1'
- OPEN args
- Exit
- end
- if show('P','AMOSAIC.1') then
- do
- address 'AMOSAIC.1'
- JUMP URL args
- Exit
- end
- if show('P','IBROWSE.1') then
- do
- address 'IBROWSE.1'
- NewWindow args
- Exit
- end
- if show('P','IBROWSE') then
- do
- address 'IBROWSE'
- GOTOURL args
- Exit
- end
- if show('P','VOYAGER') then
- do
- address 'VOYAGER'
- OPENURL args NEW
- Exit
- end
- /* Here you can include the path to your web browser/ftp program:
- ** Then it will be automatically started if it not already running. */
-
- ADDRESS COMMAND "c:run >NIL: Internet:WWW/Ibrowse/Ibrowse" args;
- Exit
-